home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / ptv1n6.arc / SHOWSHAD.C < prev    next >
Text File  |  1991-01-21  |  345b  |  15 lines

  1. /* Attach and display a shadow border on a VV Designer form */
  2. /* Caution: call this function only from a begin-form function */
  3.  
  4. int FASTCALL show_shad(fmp)
  5.  
  6. FORMPTR fmp;
  7.  
  8. {
  9.     if(fmp->wnp->shadp == (PTR)NULLP) {
  10.         sw_shad(TRANSPARENT, LSHADOW, BOTTOMRIGHT, fmp->wnp);
  11.         shad_up(fmp->wnp);
  12.     }
  13.     return(TRUE);
  14. }
  15.